home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / aspectRatios.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-22  |  592 b   |  28 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5.  
  6. // these are simply the tag ids for a set of aspect ratios...
  7.  
  8. #define WW_ASPECT_DONT_CARE  0
  9.  
  10. // NTSC is 4:3
  11. #define WW_ASPECT_NTSC       1
  12.  
  13. // Academy is 1.33:1
  14. #define WW_ASPECT_ACADEMY    1
  15.  
  16. #define WW_ASPECT_SQUARE     3 
  17. #define WW_ASPECT_CUSTOM     4
  18.  
  19. // American Widescreen is 1.85:1
  20. #define WW_ASPECT_AMERICAN_WIDESCREEN  5
  21.  
  22. // European Widescreen is 1.66:1
  23. #define WW_ASPECT_EUROPEAN_WIDESCREEN  6
  24.  
  25. // VistaVision is 2.21:1
  26. #define WW_ASPECT_VISTA_VISION          7
  27.  
  28.